home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / SNIP0492.ARJ / ROUND.H < prev    next >
Text File  |  1991-09-23  |  212b  |  12 lines

  1. /*
  2. ** rounding macros by Dave Knapp
  3. */
  4.  
  5. /* round to integer */
  6.  
  7. #define iround(x) floor((x)+0.5)
  8.  
  9. /* round number n to d decimal points */
  10.  
  11. #define fround(n,d)  (floor((n)/pow(.1,(d))+.5)*pow(.1,(d)))
  12.